/* Стилі наші проєкти */
body{
  background-color: yellow;
}


.container-skills {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: yellow;
}

.container-skills h1 {
      text-align: center;
      margin: 50px auto;
    }
.container-skills p.lead {
      text-align: center;
      margin-bottom: 40px;
      color: #666;
    }

/* Сітка проєктів */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.project-card {
	height: 300px;
	display: grid;
	grid-template-columns: minmax(280px, 0.5fr) minmax(280px, 1fr);
    gap: 100px;
    /*display: flex;
    flex-direction: row;
    align-items: left;*/
    transition: transform 0.2s, box-shadow 0.2s;
	padding: 50px;
	margin: 20px;
  background-color: black;
  border-radius: 20px;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.project-card img {
	max-width: 400px;
	max-height: 280px;
    object-fit: cover;
    display: block;
}
.project-content {
	width: 80%;
    height: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 1px 1px rgb(228, 228, 228);
	border-bottom: 8px solid rgb(255, 194, 80);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 24px;
	margin-left: 50px;
    display: flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;
}
.project-content h2 {
    font-size: 1.25rem;
	color: rgb(255, 194, 80);
	font-size: 30pt;
	text-align: center;
	margin: 30px 0;
}
.project-content p {
    flex: 1;
    color: #979797;
	text-align: center;
}
.project-content a {
    align-self: flex-start;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    transition: color 0.2s;
}
.project-content a:hover {
    color: #005bb5;
}

/* Адаптивні зміни наші проєкти*/
    @media (max-width: 600px) {
      .project-card img {
        height: 140px;
      }
    }




    .radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  background-color: #EEE;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 300px;
  font-size: 14px;

}

.radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
}

.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  padding: .5rem 0;
  color: rgba(51, 65, 85, 1);
  transition: all .15s ease-in-out;
  text-decoration: none;
}

.radio-inputs .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
}




.footer {
  background-color: black;
  color: #E0E1DD;
  padding: 3rem 0 1rem;
  font-family: "Inter", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  margin: 1rem 0;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #E0E1DD;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ADB5BD;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00B4D8;
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #1B263B;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #E0E1DD;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #00B4D8;
  color: #0D1B2A;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #868E96;
}











